home *** CD-ROM | disk | FTP | other *** search
/ Lunchtime #3: Edward's Revenge / Lunchtime Express 3 - Edward's Revenge (Disk 1 of 2).adf / devs / mountlist next >
Text File  |  1991-10-03  |  4KB  |  156 lines

  1. /* MountList for V1.3 */
  2.  
  3. /*  Mount Entry for the new Console Handler */
  4.  
  5. NEWCON: 
  6.     Handler = L:Newcon-Handler
  7.     Priority = 5
  8.     StackSize = 1000
  9.     Mount = 1
  10.  
  11. #
  12.  
  13. /* This is an example of a non-filing system mount using a handler written
  14.    in C.
  15. */
  16.  
  17. SPEAK:     
  18.     Handler = L:Speak-Handler
  19.     Stacksize = 6000
  20.     Priority = 5
  21.     GlobVec = -1
  22. #
  23.  
  24. /*  This is an example of an alternative type of non-filing device mount,
  25.     used to mount the non-buffered serial handler
  26. */
  27.  
  28. AUX:
  29.     Handler = L:Aux-Handler
  30.     Stacksize = 1000
  31.     Priority = 5
  32. #
  33. /*  This is a non-filing system device */
  34.  
  35. PIPE:      
  36.     Handler = L:Pipe-Handler
  37.     Stacksize = 6000
  38.     Priority = 5
  39.     GlobVec = -1
  40. #
  41.  
  42. /* This is an example of a mount list entry for using the recoverable 
  43.    ram disk.  Depending on the amount of memory you wish to devote to
  44.    it, you may want to change the HighCyl value.
  45. */
  46.  
  47. RAD:       Device = ramdrive.device
  48.            Unit   = 0
  49.            Flags  = 0
  50.            Surfaces  = 2
  51.            BlocksPerTrack = 11
  52.            Reserved = 2
  53.            Interleave = 0
  54.            LowCyl = 0  ;  HighCyl = 79
  55.            Buffers = 5
  56.            BufMemType = 1
  57.            Bootpri = 129
  58. #
  59.  
  60. /* Mount a 5.25" disk drive to be mounted as DF2: */
  61.  
  62. DF2:       Device = trackdisk.device
  63.            Unit   = 2
  64.            Flags  = 1
  65.            Surfaces  = 2
  66.            BlocksPerTrack = 11
  67.            Reserved = 2
  68.            Interleave = 0
  69.            LowCyl = 0  ;  HighCyl = 39
  70.            Buffers = 20
  71.            BufMemType = 3
  72. #
  73.  
  74. /* An example mount entry using the fast file system with a partition
  75.    of the hard disk using the 2090 disk controller.  PREP has been
  76.    used to create the first partition (up to cylinder 20).  The second
  77.    partition is MOUNTed, using the following entry:
  78.    NOTE: Some hard disk drivers require more stack than specified here.
  79.    Some may required less.
  80.    (The hard disk is not included; this is only an example.)
  81. */
  82.  
  83. FAST:
  84.     Device = hddisk.device
  85.     FileSystem = l:FastFileSystem
  86.     Unit   = 1
  87.     Flags  = 0
  88.     Surfaces  = 4
  89.     BlocksPerTrack = 17
  90.     Reserved = 2
  91.     Interleave = 0
  92.     LowCyl = 21  ;  HighCyl = 800
  93.     Buffers = 30
  94.     GlobVec = -1
  95.     BufMemType = 1
  96.     Mount = 1
  97.     DosType = 0x444F5301
  98.     StackSize = 4000
  99. #
  100.  
  101. /* Let's say you have an A2000 with an internal drive, and an external
  102.    drive, and you want to refer to the external drive as DF1: as well
  103.    as DF2:   Well, this MountList entry will do it for you.  This technique
  104.    can be extended to provide you with a drive A: and B: if you really
  105.    want.
  106. */
  107.  
  108. DF1:       Device = trackdisk.device
  109.            Unit   = 2
  110.            Flags  = 1
  111.            Surfaces  = 2
  112.            BlocksPerTrack = 11
  113.            Reserved = 2
  114.            Interleave = 0
  115.            LowCyl = 0  ;  HighCyl = 79
  116.            Buffers = 20
  117.            BufMemType = 3
  118. #
  119.  
  120.  
  121. /* non-recoverable ram disk for lots of intermediate stuff.
  122. Use this for fast DiskCopy's */
  123.  
  124. VD0:
  125.            Device = ramdisk.device
  126.            Unit   = 3
  127.            Flags  = 7
  128.            Surfaces  = 2
  129.            BlocksPerTrack = 11
  130.            Reserved = 2
  131.            Interleave = 0
  132.            LowCyl = 0 ;  HighCyl = 79
  133.            Buffers = 1
  134.            BufMemType = 5
  135.            Mount = 1
  136.            BootPri = -128
  137.            Priority = 5
  138. #
  139.  
  140. VD1:
  141.            Device = ramdisk.device
  142.            Unit   = 4
  143.            Flags  = 7
  144.            Surfaces  = 2
  145.            BlocksPerTrack = 11
  146.            Reserved = 2
  147.            Interleave = 0
  148.            LowCyl = 0 ;  HighCyl = 39
  149.            Buffers = 1
  150.            BufMemType = 5
  151.            Mount = 1
  152.            BootPri = -128
  153.            Priority = 5
  154. #
  155.  
  156.